bb84d1673b0ed5bd9b80472d61b43bde4cbbb090,plugins/cvs2/javacvs-src/org/netbeans/lib/cvsclient/command/update/UpdateMessageParser.java,UpdateMessageParser,parseLine,#String#boolean#,86

Before Change



                index = line.indexOf(NOT_IN_REPOSITORY);
                if (index > 0) {
                        final String fileName = line.substring(line.indexOf(SERVER) + SERVER.length(),
                                                               index).trim();
                        final FileObject fileObject = cvsFileSystem.unixFileNameToFileObject(fileName);
                        processNotPertinent(fileObject);

After Change


      return;
    }

    Matcher m = NOT_IN_REPOSITORY_PATTERN.matcher(line);
    if (m.matches()) {
      final String fileName = m.group(1).trim();
      final FileObject fileObject = cvsFileSystem.unixFileNameToFileObject(fileName);